『POJ 2159』 Ancient Cipher 发表于 2018-02-27 | 更新于 2018-09-15 | 分类于 题解 | 阅读次数: 这题简直太水了吧。。只要对每个字母出现的次数统计并排序然后分别对应的字母个数相等就表明一定有转换方式。。 123456789101112131415161718192021222324252627282930313233343536#include <iostream>#include <cstdio>#include <cstring>#include <cstdlib>#include <string>#include <algorithm>using namespace std;string s1, s2;int a[27], b[27];int main(int argc, char **argv){ ios::sync_with_stdio(false); cin >> s1 >> s2; memset(a, 0, sizeof a); memset(b, 0, sizeof b); for (register int i = 0; i < s1.size(); ++i) { a[s1[i] - 'A']++; } for (register int i = 0; i < s2.size(); ++i) { b[s2[i] - 'A']++; } sort(a, a + 26); sort(b, b + 26); for (register int i = 0; i < 26; ++i) { if (a[i] != b[i]) { cout << "NO" << endl; return 0; } } cout << "YES" << endl; return 0;} -------------本文结束了哦感谢您的阅读------------- 本文作者: Sky of war 本文链接: https://skyofwar.xyz/2018/02/27/『POJ 2159』 Ancient Cipher/ 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!